Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
12 lines (8 loc) · 273 Bytes

2.1.14 - swoole_server->clearTimer.md

File metadata and controls

12 lines (8 loc) · 273 Bytes

swoole_server->clearTimer

清除tick/after定时器,此函数是swoole_timer_clear的别名。

使用示例:

$timer_id = $server->tick(1000, function ($id) use ($server) {
    $server->clearTimer($id);
});